function getToolbar() {
var the_beginning, the_end;
var welcome, login, signup, games, community, support, shopping;
var separator = " | ";
the_beginning = "";
the_beginning += '';
the_beginning += '
';
the_beginning += ' ';
the_beginning += ' ';
the_beginning += ' ';
the_beginning += ' ';
the_beginning += '  | ';
the_beginning += ' ';
the_end = "";
the_end += ' | ';
the_end += ' ';
the_end += ' ';
the_end += ' | ';
the_end += '
';
the_end += ' ';
the_end += '  | ';
the_end += '
';
the_end += '
';
welcome = 'Welcome Guest';
login = 'LOG IN';
signup = 'SIGN UP';
games = 'GAMES';
community = 'COMMUNITY';
support = 'SUPPORT';
shopping = 'SHOPPING';
return the_beginning
+ welcome + separator
+ login + separator
+ signup + separator
+ games + separator
+ community + separator
+ support + separator
+ shopping
+ the_end;
}
function displayToolbar() {
document.write(getToolbar());
}
function getPreferredLocalization() {
return 'de';
}
function getLegalLocalization() {
return 'de';
}
function getRatingParameter() {
return -1;
}
displayToolbar();